home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2003 #8 / K-CD-8-2003.ISO / Orbz demo / orbz_demo_1_00.exe / main.cs < prev    next >
Encoding:
Text File  |  2002-12-24  |  7.6 KB  |  280 lines

  1. //-----------------------------------------------------------------------------
  2. // Torque Game Engine
  3. //
  4. // Copyright (c) 2001 GarageGames.Com
  5. // Portions Copyright (c) 2001 by Sierra Online, Inc.
  6. //-----------------------------------------------------------------------------
  7.  
  8. $baseMods   = "common";
  9. $userMods   = "fps";
  10. $displayHelp = false;
  11.  
  12.  
  13. //-----------------------------------------------------------------------------
  14. // Support functions used to manage the mod string
  15.  
  16. function pushFront(%list, %token, %delim)
  17. {
  18.    if (%list !$= "")
  19.       return %token @ %delim @ %list;
  20.    return %token;
  21. }
  22.  
  23. function pushBack(%list, %token, %delim)
  24. {
  25.    if (%list !$= "")
  26.       return %list @ %delim @ %token;
  27.    return %token;
  28. }
  29.  
  30. function popFront(%list, %delim)
  31. {
  32.    return nextToken(%list, unused, %delim);
  33. }
  34.  
  35. function prepBuild()
  36. {
  37.   // this compiles all the scripts and guis
  38.   for(%file = findFirstFile("*.cs"); %file !$= ""; %file = findNextFile("*.cs"))
  39.     compile(%file);
  40.   for(%file = findFirstFile("*.gui"); %file !$= ""; %file = findNextFile("*.gui"))
  41.     compile(%file);
  42. }
  43.  
  44. //------------------------------------------------------------------------------
  45. // Output version
  46.  
  47. echo("--------- Orbz Demo v" @ getVersionString() @ " ---------");
  48. echo("");
  49.  
  50.  
  51. //------------------------------------------------------------------------------
  52. // Process command line arguments
  53.  
  54. for ($i = 1; $i < $Game::argc ; $i++)
  55. {
  56.    $arg = $Game::argv[$i];
  57.    $nextArg = $Game::argv[$i+1];
  58.    $hasNextArg = $Game::argc - $i > 1;
  59.    $logModeSpecified = false;
  60.  
  61.    switch$ ($arg)
  62.    {
  63.       //--------------------
  64.       case "-prepbuild":
  65.                 $prepBuild = true;
  66.          $argUsed[$i]++;
  67.  
  68.       //--------------------
  69.       case "-log":
  70.          $argUsed[$i]++;
  71.          if ($hasNextArg)
  72.          {
  73.             // Turn on console logging
  74.             if ($nextArg != 0)
  75.             {
  76.                // Dump existing console to logfile first.
  77.                $nextArg += 4;
  78.             }
  79.             setLogMode($nextArg);
  80.             $logModeSpecified = true;
  81.             $argUsed[$i+1]++;
  82.             $i++;
  83.          }
  84.          else
  85.             error("Error: Missing Command Line argument. Usage: -log <Mode: 0,1,2>");
  86.  
  87.       //--------------------
  88. //      case "-mod":
  89. //         $argUsed[$i]++;
  90. //         if ($hasNextArg)
  91. //         {
  92. //            // Append the mod to the end of the current list
  93. //            $userMods = strreplace($userMods, $nextArg, "");
  94. //            $userMods = pushFront($userMods, $nextArg, ";");
  95. //            $argUsed[$i+1]++;
  96. //            $i++;
  97. //         }
  98. //         else
  99. //            error("Error: Missing Command Line argument. Usage: -mod <mod_name>");
  100.  
  101.       //--------------------
  102. //      case "-game":
  103. //         $argUsed[$i]++;
  104. //         if ($hasNextArg)
  105. //         {
  106. //            // Remove all mods, start over with game
  107. //            $userMods = $nextArg;
  108. //            $argUsed[$i+1]++;
  109. //            $i++;
  110. //         }
  111. //         else
  112. //            error("Error: Missing Command Line argument. Usage: -game <game_name>");
  113.  
  114.       //--------------------
  115.       case "-show":
  116.          // A useful shortcut for -mod show
  117.          $userMods = strreplace($userMods, "show", "");
  118.          $userMods = pushFront($userMods, "show", ";");
  119.          $argUsed[$i]++;
  120.  
  121.       //--------------------
  122.       case "-console":
  123.          enableWinConsole(true);
  124.          $argUsed[$i]++;
  125.  
  126.       //--------------------
  127.       case "-jSave":
  128.          $argUsed[$i]++;
  129.          if ($hasNextArg)
  130.          {
  131.             echo("Saving event log to journal: " @ $nextArg);
  132.             saveJournal($nextArg);
  133.             $argUsed[$i+1]++;
  134.             $i++;
  135.          }
  136.          else
  137.             error("Error: Missing Command Line argument. Usage: -jSave <journal_name>");
  138.  
  139.       //--------------------
  140.       case "-jPlay":
  141.          $argUsed[$i]++;
  142.          if ($hasNextArg)
  143.          {
  144.             playJournal($nextArg,false);
  145.             $argUsed[$i+1]++;
  146.             $i++;
  147.          }
  148.          else
  149.             error("Error: Missing Command Line argument. Usage: -jPlay <journal_name>");
  150.  
  151.       //--------------------
  152.       case "-jDebug":
  153.          $argUsed[$i]++;
  154.          if ($hasNextArg)
  155.          {
  156.             playJournal($nextArg,true);
  157.             $argUsed[$i+1]++;
  158.             $i++;
  159.          }
  160.          else
  161.             error("Error: Missing Command Line argument. Usage: -jDebug <journal_name>");
  162.  
  163.       //-------------------
  164.       case "-help":
  165.          $displayHelp = true;
  166.          $argUsed[$i]++;
  167.    }
  168. }
  169.  
  170.  
  171. //-----------------------------------------------------------------------------
  172. // The displayHelp, onStart, onExit and parseArgs function are overriden
  173. // by mod packages to get hooked into initialization and cleanup.
  174.  
  175. function onStart()
  176. {
  177.    // Default startup function
  178. }
  179.  
  180. function onExit()
  181. {
  182.    // OnExit is called directly from C++ code, whereas onStart is
  183.    // invoked at the end of this file.
  184. }
  185.  
  186. function parseArgs()
  187. {
  188.    // Here for mod override, the arguments have already
  189.    // been parsed.
  190. }
  191.  
  192. package Help {
  193.    function onExit() {
  194.       // Override onExit when displaying help
  195.    }
  196. };
  197.  
  198. function displayHelp() {
  199.    activatePackage(Help);
  200.  
  201.       // Notes on logmode: console logging is written to console.log.
  202.       // -log 0 disables console logging.
  203.       // -log 1 appends to existing logfile; it also closes the file
  204.       // (flushing the write buffer) after every write.
  205.       // -log 2 overwrites any existing logfile; it also only closes
  206.       // the logfile when the application shuts down.  (default)
  207.  
  208.    error(
  209.       "Orbz command line options:\n"@
  210.       "  -log <logmode>         Logging behavior; see main.cs comments for details\n"@
  211. //      "  -game <game_name>      Reset list of mods to only contain <game_name>\n"@
  212. //      "  -mod <mod_name>        Add <mod_name> to list of mods\n"@
  213.       "  -console               Open a separate console\n"@
  214.       "  -show <shape>          Launch the TS show tool\n"@
  215.       "  -jSave  <file_name>    Record a journal\n"@
  216.       "  -jPlay  <file_name>    Play back a journal\n"@
  217.       "  -jDebug <file_name>    Play back a journal and issue an int3 at the end\n"@
  218.       "  -help                  Display this help message\n"
  219.    );
  220. }
  221.  
  222.  
  223. //--------------------------------------------------------------------------
  224.  
  225. // Default to a new logfile each session.
  226. if (!$logModeSpecified) {
  227.    setLogMode(6);
  228. }
  229.  
  230. // Set the mod path which dictates which directories will be visible
  231. // to the scripts and the resource engine.
  232. $modPath = pushback($userMods, $baseMods, ";");
  233. setModPaths($modPath);
  234.  
  235. // Get the first mod on the list, which will be the last to be applied... this
  236. // does not modify the list.
  237. nextToken($modPath, currentMod, ";");
  238.  
  239. // Execute startup scripts for each mod, starting at base and working up
  240. echo("--------- Loading MODS ---------");
  241. function loadMods(%modPath)
  242. {
  243.    %modPath = nextToken(%modPath, token, ";");
  244.    if (%modPath !$= "")
  245.       loadMods(%modPath);
  246.  
  247.    exec(%token @ "/main.cs");
  248. }
  249. loadMods($modPath);
  250. echo("");
  251.  
  252. // Parse the command line arguments
  253. echo("--------- Parsing Arguments ---------");
  254. parseArgs();
  255.  
  256. // Either display the help message or startup the app.
  257. if($prepBuild)
  258. {
  259.     prepBuild();
  260.     quit();
  261. }
  262. else if ($displayHelp)
  263. {
  264.    enableWinConsole(true);
  265.    displayHelp();
  266.    quit();
  267. }
  268. else
  269. {
  270.    onStart();
  271.    echo("Engine initialized...");
  272. }
  273.  
  274. // Display an error message for unused arguments
  275. for ($i = 1; $i < $Game::argc; $i++)  {
  276.    if (!$argUsed[$i])
  277.       error("Error: Unkown command line argument: " @ $Game::argv[$i]);
  278. }
  279.  
  280.